home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / DgItmIt.idl < prev    next >
Encoding:
Text File  |  1997-02-13  |  1.5 KB  |  58 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _DGITMIT_
  4. #define _DGITMIT_
  5.  
  6. #ifndef _ODOBJECT_
  7. #include "ODObject.idl"
  8. #endif
  9.  
  10. //=====================================================================================
  11. // Classes defined in this interface
  12. //=====================================================================================
  13. interface  ODDragItemIterator;
  14.  
  15. //=====================================================================================
  16. // Classes used by this interface
  17. //=====================================================================================
  18.  
  19. interface  ODStorageUnit;
  20.  
  21. //=====================================================================================
  22. // Implementation Types
  23. //=====================================================================================
  24.  
  25.  
  26. //=====================================================================================
  27. // ODDragItemIterator
  28. //=====================================================================================
  29.  
  30. interface ODDragItemIterator : ODObject
  31. {
  32.      ODStorageUnit   First();
  33.     ODStorageUnit   Next();
  34.     ODBoolean        IsNotComplete();
  35.  
  36.  
  37. #ifdef __SOMIDL__
  38. #ifdef _PLATFORM_MACINTOSH_
  39.   implementation
  40.   {
  41.       functionprefix = ODDragItemIterator;
  42.     
  43.     override:
  44.         somUninit;
  45.         
  46.     releaseorder:
  47.         First,
  48.         Next,
  49.         IsNotComplete,
  50.         reserved1;
  51.         
  52.   };
  53. #endif //# _PLATFORM_MACINTOSH_
  54. #endif //# __SOMIDL__
  55. };
  56.  
  57. #endif  // _DGITMIT_
  58.